100
How can I prevent showing the border for selected/highlight/hot items

exribbon1.set_Background(exontrol.EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,Color.FromArgb(255,255,255));
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item",null,null);
	var_Items.Add("Item",null,null);
exribbon1.Refresh();

99
How can I change the item's background/backcolor, when the cursor hovers it (hot)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item",null,null).HotBackColor = Color.FromArgb(255,0,0);
	var_Items.Add("",null,null).ToString = "Item[bghot=RGB(255,0,0)]";
exribbon1.Refresh();

98
How can I change the item's background/backcolor

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item",null,null).BackColor = Color.FromArgb(255,0,0);
	var_Items.Add("Item",null,null).BackColor32 = 0x1000000;
	var_Items.Add("",null,null).ToString = "Item[bg=RGB(255,0,0)]";
exribbon1.Refresh();

97
How can I specify/assign the item's identifier

exribbon1.Debug = true;
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("ID 1",0,1000);
	var_Items.Add("ID 2",null,null).ID = 1001;
	var_Items.Add("",null,null).ToString = "ID 3[id=1002]";
exribbon1.Refresh();

96
The popup is displayed using a fade/light-up effect. Is it possible to prevent that

exribbon1.ShowPopupEffect = exontrol.EXRIBBONLib.ShowPopupEffectEnum.exShowPopupDirect;
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items.Add("Popup",2,null).Items;
		var_Items1.Add("Item 1",null,null);
		var_Items1.Add("Item 2",null,null);
		var_Items1.Add("Item 3",null,null);
		var_Items1.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder;
exribbon1.Refresh();

95
How can I show semi-transparent popups

exribbon1.PopupVisibility = 50;
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items.Add("Popup",2,null).Items;
		var_Items1.Add("Item 1",null,null);
		var_Items1.Add("Item 2",null,null);
		var_Items1.Add("Item 3",null,null);
		var_Items1.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder;
exribbon1.Refresh();

94
How can I change the popup's border

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items.Add("Popup",2,null).Items;
		var_Items1.Add("Item 1",null,null);
		var_Items1.Add("Item 2",null,null);
		var_Items1.Add("Item 3",null,null);
		var_Items1.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder;
exribbon1.Refresh();

93
How can I show a horizontal separator/line between groups (method 3,EBN color)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical | exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("",null,null);
				var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item1.EditWidth = -128;
				var_Item1.EditValue = 25;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("",null,null);
				var_Item2.Enabled = false;
				var_Item2.BackColor32 = 0x1000000;
				var_Item2.ItemHeight = 8;
				var_Item2.CaptionWidth = 128;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("",null,null);
				var_Item3.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item3.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item3.EditWidth = -128;
				var_Item3.EditValue = 25;
exribbon1.Refresh();

92
How can I show a horizontal separator/line between groups (method 2,solid color)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical | exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("",null,null);
				var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item1.EditWidth = -128;
				var_Item1.EditValue = 25;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("",null,null);
				var_Item2.Enabled = false;
				var_Item2.BackColor = Color.FromArgb(128,128,128);
				var_Item2.ItemHeight = 8;
				var_Item2.CaptionWidth = 128;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("",null,null);
				var_Item3.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item3.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item3.EditWidth = -128;
				var_Item3.EditValue = 25;
exribbon1.Refresh();

91
How can I show a horizontal separator/line between groups (method 1,pattern)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical | exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("",null,null);
				var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item1.EditWidth = -128;
				var_Item1.EditValue = 25;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("",2,null);
				var_Item2.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
				exontrol.EXRIBBONLib.Items var_Items2 = var_Item2.Items;
					exontrol.EXRIBBONLib.Item var_Item3 = var_Items2.Add("",null,null);
						var_Item3.Enabled = false;
						var_Item3.ItemHeight = 8;
						var_Item3.CaptionWidth = 128;
					var_Items2.BackgroundExt = "none[(0,50%-1,100%,2),pattern=0x006,patterncolor=RGB(128,128,128)]";
			exontrol.EXRIBBONLib.Item var_Item4 = var_Items1.Add("",null,null);
				var_Item4.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item4.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item4.EditWidth = -128;
				var_Item4.EditValue = 25;
exribbon1.Refresh();

90
How can I show a vertical separator/line between groups (method 3,EBN color)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("",null,null);
				var_Item1.ItemHeight = 128;
				var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item1.EditWidth = 32;
				var_Item1.EditValue = 25;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("",null,null);
				var_Item2.Enabled = false;
				var_Item2.BackColor32 = 0x1000000;
				var_Item2.ItemHeight = 96;
				var_Item2.CaptionWidth = 8;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("",null,null);
				var_Item3.ItemHeight = 128;
				var_Item3.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item3.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item3.EditWidth = 32;
				var_Item3.EditValue = 25;
exribbon1.Refresh();

89
How can I show a vertical separator/line between groups (method 2,solid color)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("",null,null);
				var_Item1.ItemHeight = 128;
				var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item1.EditWidth = 32;
				var_Item1.EditValue = 25;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("",null,null);
				var_Item2.Enabled = false;
				var_Item2.BackColor = Color.FromArgb(128,128,128);
				var_Item2.ItemHeight = 96;
				var_Item2.CaptionWidth = 8;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("",null,null);
				var_Item3.ItemHeight = 128;
				var_Item3.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item3.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item3.EditWidth = 32;
				var_Item3.EditValue = 25;
exribbon1.Refresh();

88
How can I show a vertical separator/line between groups (method 1,pattern)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("",null,null);
				var_Item1.ItemHeight = 128;
				var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item1.EditWidth = 32;
				var_Item1.EditValue = 25;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("",2,null);
				var_Item2.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
				exontrol.EXRIBBONLib.Items var_Items2 = var_Item2.Items;
					exontrol.EXRIBBONLib.Item var_Item3 = var_Items2.Add("",null,null);
						var_Item3.Enabled = false;
						var_Item3.ItemHeight = 96;
						var_Item3.CaptionWidth = 8;
					var_Items2.BackgroundExt = "none[(50%-1,0,2,100%),pattern=6,patterncolor=RGB(128,128,128)]";
			exontrol.EXRIBBONLib.Item var_Item4 = var_Items1.Add("",null,null);
				var_Item4.ItemHeight = 128;
				var_Item4.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
				var_Item4.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
				var_Item4.EditWidth = 32;
				var_Item4.EditValue = 25;
exribbon1.Refresh();

87
How can I show a pattern on the items

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
	var_Items.BackColor = Color.FromArgb(255,255,255);
	var_Items.Padding = "2,2,2,12";
	var_Items.BackgroundExt = "root[pattern=0x006,patterncolor=RGB(128,128,128),frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><of" +
"f -2> clipboard </off></font></fgcolor>`,align=0x21])";
exribbon1.Refresh();

86
How can I show a thick frame arround the items

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
	var_Items.BackColor = Color.FromArgb(255,255,255);
	var_Items.Padding = "2,2,2,12";
	var_Items.BackgroundExt = "root[frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor>`,ali" +
"gn=0x21])";
exribbon1.Refresh();

85
How can I add some additional icons on the background

exribbon1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
	var_Items.BackColor = Color.FromArgb(255,255,255);
	var_Items.Padding = "0,0,0,16";
	var_Items.BackgroundExt = "root[text=`<img>2</img><font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor><img>2</img>`,align=0x21]";
exribbon1.Refresh();

84
How can I add some additional text on the background

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
	var_Items.BackColor = Color.FromArgb(255,255,255);
	var_Items.Padding = "0,0,0,8";
	var_Items.BackgroundExt = "root[text=`<font ;6><fgcolor 808080>clipboard`,align=0x21]";
exribbon1.Refresh();

83
How can I disable incremental searching

exribbon1.PopupIncrementalSearch = exontrol.EXRIBBONLib.IncrementalSearchEnum.exNoIncrementalSearch;
exribbon1.Items.ToString = "Popup(Item 1,Item 2,Item 3)";
exribbon1.Refresh();

82
How can I assign a tooltip to an item (method 2)

exribbon1.ToString = "ToolTip[id=10][ttp=This is a bit of text that should be shown when cursor hovers the item]";

81
How can I assign a tooltip to an item (method 1)

exribbon1.Items.Add("ToolTip",null,null).Tooltip = "This is a bit of text that should be shown when cursor hovers the item";
exribbon1.Refresh();

80
How can I assign a spin field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Spin",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSpin;
		var_Item.EditWidth = 16;
		var_Item.EditValue = 15;
		var_Item.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
		var_Item.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditMaxValue,1000);
	exontrol.EXRIBBONLib.Item var_Item1 = var_Items.Add("Edit-Spin",null,null);
		var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSpin | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditText;
		var_Item1.EditWidth = -128;
		var_Item1.EditValue = 15;
		var_Item1.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditMaxValue,1000);
	exontrol.EXRIBBONLib.Item var_Item2 = var_Items.Add("Splider-Spin",null,null);
		var_Item2.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSpin | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
		var_Item2.EditWidth = -128;
		var_Item2.EditValue = 25;
		var_Item2.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
exribbon1.Refresh();

79
How can I assign a spin field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Spin[id=10][edittype=0x0200][edit=15][border=0][max=1000][editwidth=16],Edit-Spin[id=20][edittype=0x0201][edit=15][max=1000][ed" +
"itwidth=-128],Splider-Spin[id=30][edittype=0x0203][edit=25][border=0][editwidth=-128]";

78
How can I add a vertical slider (method 2)

exribbon1.ToString = "Vertical[id=10][edittype=0x0403][edit=25][border=0][height=128]";

77
How can I add a vertical slider (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Vertical",null,null);
		var_Item.ItemHeight = 128;
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditVertical | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
		var_Item.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
		var_Item.EditWidth = 32;
		var_Item.EditValue = 25;
exribbon1.Refresh();

76
How can I disable an editor (method 2)

exribbon1.ToString = "Disabled[id=10][dis][edittype=0x01][edit=text-box][editwidth=-128]";

75
How can I disable an editor (method 1)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Disabled",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditText;
		var_Item.EditWidth = -128;
		var_Item.EditValue = "text-box";
		var_Item.Enabled = false;
exribbon1.Refresh();

74
How can I lock an editor (method 2)

exribbon1.ToString = "Locked[id=10][edittype=0x0101][edit=disabled text-box][editwidth=-128]";

73
How can I lock an editor (method 1)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Locked",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditReadOnly | exontrol.EXRIBBONLib.AllowEditEnum.exItemEditText;
		var_Item.EditWidth = -128;
		var_Item.EditValue = "disabled text-box";
exribbon1.Refresh();

72
How can I assign a font field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Font",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditFont;
		var_Item.EditWidth = -128;
		var_Item.EditValue = "Tahoma";
exribbon1.Refresh();

71
How can I assign a font field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Font[id=10][edittype=0x07][edit=Tahoma][editwidth=-128]";

70
How can I assign a color field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Color",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditColor;
		var_Item.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
		var_Item.EditWidth = -128;
		var_Item.EditValue = 255;
exribbon1.Refresh();

69
How can I assign a color field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Color[id=10][edittype=0x06][edit=#FF0000][border=0][editwidth=-128]";

68
How can I assign a scrollbar field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("ScrollBar",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditScrollBar;
		var_Item.EditWidth = -128;
		var_Item.EditValue = "25";
exribbon1.Refresh();

67
How can I assign a scrollbar field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "ScrollBar[id=10][edittype=0x05][edit=25][editwidth=-128]";

66
Is it possible to change the tooltip beging shown when I change the slider/scroll/progress value

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Progress",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditProgress;
		var_Item.EditWidth = -128;
		var_Item.EditValue = 25;
		var_Item.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditChangeToolTip,"`Current value is: ` + value");
exribbon1.Refresh();

65
How can I hide the tooltip beging shown when I change the slider/scroll/progress value

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Progress",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditProgress;
		var_Item.EditWidth = -128;
		var_Item.EditValue = 25;
		var_Item.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditChangeToolTip,"");
exribbon1.Refresh();

64
How can I assign a progress field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Progress",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditProgress;
		var_Item.EditWidth = -128;
		var_Item.EditValue = 25;
exribbon1.Refresh();

63
How can I assign a progress field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Progress[id=10][edittype=0x04][edit=25][editwidth=-128]";

62
How can I assign a slider field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Slider",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
		var_Item.EditWidth = -128;
		var_Item.EditValue = 25;
	exontrol.EXRIBBONLib.Item var_Item1 = var_Items.Add("Slider",null,null);
		var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditSlider;
		var_Item1.EditBorder = exontrol.EXRIBBONLib.EditBorderEnum.exEditBorderNone;
		var_Item1.EditWidth = -128;
		var_Item1.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditMinValue,50);
		var_Item1.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditMaxValue,450);
		var_Item1.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditTickStyle,2);
		var_Item1.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditTickFrequency,50);
		var_Item1.set_EditOption(exontrol.EXRIBBONLib.EditOptionEnum.exEditTickLabel,"value = vmin ? '<br><font ;6><b>'+value : ( value = vmax ? '<br><font ;6><b>'+value : ( value = 200 ? '<br><font ;6><b><fgcolor" +
" FF0000>'+value : '' ) )");
		var_Item1.EditValue = 345;
exribbon1.Refresh();

61
How can I assign a slider field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Slider[id=10][edittype=0x03][edit=25][editwidth=-128],Slider[id=20][edittype=0x03][edit=345][border=0][min=50][max=450][tick=2]" +
"[freq=50][ticklabel=value = vmin ? '<br><font ;6><b>'+value : ( value = vmax ? '<br><font ;6><b>'+value : ( value = 200 ? '<br><" +
"font ;6><b><fgcolor FF0000>'+value : '' ) )][editwidth=-128]";

60
How can I assign a mask (time) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Time",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = "99:00:00;;0;overtype,warning=Invalid character";
		var_Item.EditValue = "123456";
exribbon1.Refresh();

59
How can I assign a mask (time) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Time[id=10][edittype=0x02][edit=12:34:56][mask=99:00:00;;0;overtype,warning=Invalid character][editwidth=-128]";

58
How can I assign a mask (license key) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("License Key",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = "AAAA-AAAA-AAAA-AAAA";
		var_Item.EditValue = "1234";
exribbon1.Refresh();

57
How can I assign a mask (license key) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "License Key[id=10][edittype=0x02][edit=1234-____-____-____][mask=AAAA-AAAA-AAAA-AAAA][editwidth=-128]";

56
How can I assign a mask (IP address) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("IP Address",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = "{0,255}.{0,255}.{0,255}.{0,255}";
		var_Item.EditValue = "1.2.3.4";
exribbon1.Refresh();

55
How can I assign a mask (IP address) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "IP Address[id=10][edittype=0x02][edit=1.2.3.4][mask={0,255}.{0,255}.{0,255}.{0,255}][editwidth=-128]";

54
How can I assign a mask (phone) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Phone",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = "!(9999) 000 000;;;empty,select=4,overtype,beep";
		var_Item.EditValue = "0771638317";
exribbon1.Refresh();

53
How can I assign a mask (phone) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Phone[id=10][edittype=0x02][edit=(0771) 638 317][mask=!(9999) 000 000;;;empty,select=4,overtype,beep][editwidth=-128]";

52
How can I assign a mask (date) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = "`Date: `{1,12}/{1,31}/{1950,2050};;;select=1";
		var_Item.EditValue = Convert.ToDateTime("2/15/2015",System.Globalization.CultureInfo.GetCultureInfo("en-US"));
	exontrol.EXRIBBONLib.Item var_Item1 = var_Items.Add("Date",null,null);
		var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item1.EditWidth = -128;
		var_Item1.EditMask = "!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,overtype";
		var_Item1.EditValue = Convert.ToDateTime("2/15/2015",System.Globalization.CultureInfo.GetCultureInfo("en-US"));
exribbon1.Refresh();

51
How can I assign a mask (date) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "[id=10][edittype=0x02][edit=Date: 2/15/2015][mask=`Date: `{1,12}/{1,31}/{1950,2050};;;select=1][editwidth=-128],Date[id=20][edi" +
"ttype=0x02][edit=02/15/2015][mask=!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,ov" +
"ertype][editwidth=-128]";

50
How can I assign a mask (integer) field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Integer",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = ";;;float,grouping=,digits=0";
		var_Item.EditValue = 1000;
	exontrol.EXRIBBONLib.Item var_Item1 = var_Items.Add("Integer-Grouping",null,null);
		var_Item1.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item1.EditWidth = -128;
		var_Item1.EditMask = ";;;float,decimal=,digits=0,select=1";
		var_Item1.EditValue = 1000;
	exontrol.EXRIBBONLib.Item var_Item2 = var_Items.Add("Integer-In-Range",null,null);
		var_Item2.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item2.EditWidth = -128;
		var_Item2.EditMask = "{0,2050}";
		var_Item2.EditValue = 1000;
exribbon1.Refresh();

49
How can I assign a mask (integer) field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Integer[id=10][edittype=0x02][edit=1000][mask=;;;float,grouping=,digits=0][editwidth=-128],Integer-Grouping[id=20][edittype=0x0" +
"2][edit=1,000][mask=;;;float,decimal=,digits=0,select=1][editwidth=-128],Integer-In-Range[id=30][edittype=0x02][edit=1000][mask=" +
"{0,2050}][editwidth=-128]";

48
How can I assign a mask field to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Mask",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditMask;
		var_Item.EditWidth = -128;
		var_Item.EditMask = ";;;float,select=1";
		var_Item.EditValue = 1000;
exribbon1.Refresh();

47
How can I assign a mask field to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Text-Box[id=10][edittype=0x02][edit=1,000][mask=;;;float,select=1][editwidth=-128]";

46
How can I assign an edit / text-box to the item (method 2)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Mask",null,null);
		var_Item.AllowEdit = exontrol.EXRIBBONLib.AllowEditEnum.exItemEditText;
		var_Item.EditValue = "this is a text";
		var_Item.EditWidth = -128;
exribbon1.Refresh();

45
How can I assign an edit / text-box to the item (method 1)

// EditChange event - Occurs when the user alters the item's text box field.
private void exribbon1_EditChange(object sender,exontrol.EXRIBBONLib.Item   Itm)
{
	System.Diagnostics.Debug.Print( Itm.ToString() );
}
//this.exribbon1.EditChange += new exontrol.EXRIBBONLib.exg2antt.EditChangeEventHandler(this.exribbon1_EditChange);

exribbon1.ToString = "Text-Box[edit=this is a text][editwidth=-128]";

44
How can I display a tab into the ribbon (method 2)

exribbon1.set_Background(exontrol.EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,Color.FromArgb(240,240,240));
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.ToString = "[id=0][group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03](),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-" +
"100]))";
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items[-10].Items;
		var_Items1.Add("",0,0).Padding = "8,0,0,0";
		exontrol.EXRIBBONLib.Item var_Item = var_Items1.Add("New Page",null,null);
			var_Item.ToString = "[typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][" +
"group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))";
			var_Item.Caption = "Page<off -5><font ;5><b>1</b></font></off>";
			exontrol.EXRIBBONLib.Items var_Items2 = var_Item.Items[0].Items;
				exontrol.EXRIBBONLib.Item var_Item1 = var_Items2.Add("add here fields for page 1",null,null);
					var_Item1.ID = -1000;
					var_Item1.Enabled = false;
					var_Item1.BackColor = Color.FromArgb(255,0,0);
		exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("New Page",null,null);
			var_Item2.ToString = "[typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][" +
"group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))";
			var_Item2.Caption = "Page<off -5><font ;5><b>2</b></font></off>";
			exontrol.EXRIBBONLib.Items var_Items3 = var_Item2.Items[0].Items;
				exontrol.EXRIBBONLib.Item var_Item3 = var_Items3.Add("add here fields for page 2",null,null);
					var_Item3.ID = -1001;
					var_Item3.Enabled = false;
					var_Item3.BackColor = Color.FromArgb(0,255,0);
		var_Items1.Add("",0,0).Padding = "8,0,0,0";
exribbon1.Refresh();

43
How can I add check-buttons to items, without showing the check-box (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("Check 1",null,null);
				var_Item1.Check = true;
				var_Item1.Checked = true;
				var_Item1.ShowCheckedAsSelected = exontrol.EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("Check 2",null,null);
				var_Item2.Check = true;
				var_Item2.ShowCheckedAsSelected = exontrol.EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("Check 3",null,null);
				var_Item3.Check = true;
				var_Item3.Checked = true;
				var_Item3.ShowCheckedAsSelected = exontrol.EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
exribbon1.Refresh();

42
How can I add check-buttons to items, without showing the check-box (method 1)

exribbon1.ToString = "[group=0x3](Check 1[chk=1][show=1],Check 2[chk=0][show=1],Check 3[chk=1][show=1])";

41
How can I add radio buttons to items, without showing the radio-buttons (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("Radio 1",null,1000);
				var_Item1.ShowCheckedAsSelected = exontrol.EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
				var_Item1.Radio = true;
				var_Item1.RadioGroup = 100;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("Radio 2",null,1001);
				var_Item2.ShowCheckedAsSelected = exontrol.EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
				var_Item2.Radio = true;
				var_Item2.RadioGroup = 100;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("Radio 2",null,1003);
				var_Item3.ShowCheckedAsSelected = exontrol.EXRIBBONLib.ShowCheckedAsSelectedEnum.exDisplayItemHighlight;
				var_Item3.Radio = true;
				var_Item3.RadioGroup = 100;
			var_Items1[1000].Checked = true;
exribbon1.Refresh();

40
How can I add radio buttons to items, without showing the radio-buttons (method 1)

exribbon1.ToString = "[group=0x3](Radio 1[rad=1][show=1][grp=100][id=1000],Radio 2[rad=0][show=1][grp=100][id=1001],Radio 2[rad=0][show=1][grp=100][i" +
"d=1002])";

39
How can I add check-buttons to items (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("Check 1",null,null);
				var_Item1.Check = true;
				var_Item1.Checked = true;
			var_Items1.Add("Check 2",null,null).Check = true;
exribbon1.Refresh();

38
How can I add check-buttons to items (method 1)

exribbon1.ToString = "[group=0x3](Check 1[chk=1],Check 2[chk=0])";

37
How can I add radio buttons to items (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("Radio 1",null,1000);
				var_Item1.Radio = true;
				var_Item1.RadioGroup = 100;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("Radio 2",null,1001);
				var_Item2.Radio = true;
				var_Item2.RadioGroup = 100;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("Radio 2",null,1003);
				var_Item3.Radio = true;
				var_Item3.RadioGroup = 100;
			var_Items1[1000].Checked = true;
exribbon1.Refresh();

36
How can I add radio buttons to items (method 1)

exribbon1.ToString = "[group=0x1](Radio 1[rad=1][grp=100][id=1000],Radio 2[rad=0][grp=100][id=1001],Radio 2[rad=0][grp=100][id=1002])";

35
How can I change the selection/highlighting color

exribbon1.SelBackColor = Color.FromArgb(0,0,0);
exribbon1.set_Background(exontrol.EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,Color.FromArgb(128,0,0));
exribbon1.set_Background(exontrol.EXRIBBONLib.BackgroundPartEnum.exMenuHotForeColor,Color.FromArgb(255,255,255));
exribbon1.ToString = "[group=3](Item 1[chk],Item 2[chk])";

34
How can I prevent showing/hide the border on the selected/highlighted item

exribbon1.set_Background(exontrol.EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,exribbon1.SelBackColor);
exribbon1.ToString = "Item 1,Item 2";

33
How can I display a tab into the ribbon (method 1)

exribbon1.set_Background(exontrol.EXRIBBONLib.BackgroundPartEnum.exMenuSelBorderColor,Color.FromArgb(240,240,240));
exribbon1.ToString = "[group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03]([id=50][pad=8,0,0,0],Page<off -5><font ;5><b>1</b></font></off>[id=60][ty" +
"p=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][grou" +
"p=0x03][tab=-100][pad=2,0,2,0][popupalign=1]([group=0x03]([id=80],add here fields for page 1[id=-1000][dis])),Page<off -5><font " +
";5><b>2</b></font></off>[id=100][typ=2][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(2" +
"40,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=1]([group=0x03]([id=120],add here fields for page 2[id=-10" +
"01][dis])),[id=140][pad=8,0,0,0]),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-100]))";
exontrol.EXRIBBONLib.Item var_Item = exribbon1.Items[-1000];
	var_Item.BackColor = Color.FromArgb(255,0,0);
exontrol.EXRIBBONLib.Item var_Item1 = exribbon1.Items[-1001];
	var_Item1.BackColor = Color.FromArgb(0,255,0);

32
How do I prevent highlighting the item (method 2.b)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("No highlight",null,null).Enabled = false;
	var_Items.Add("Item 2",null,null);
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

31
How do I prevent highlighting the item (method 2.a)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("No highlight",2,null);
		var_Item.Items.Add("",null,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		var_Item.ShowPopupArrow = false;
	var_Items.Add("Item 2",null,null);
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

30
How do I prevent highlighting the item (method 1.b)

exribbon1.Items.ToString = "No highlight[dis],Item 2,Item 3";
exribbon1.Refresh();

29
How do I prevent highlighting the item (method 1.a)

exribbon1.Items.ToString = "No highlight[group=0x3][arrow=0]([]),Item 2,Item 3";
exribbon1.Refresh();

28
How can I can I assign pictures or images for the item (method 2)

exribbon1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
exribbon1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item",null,null).HTMLImage = "pic1";
	var_Items.Add("Item",null,null).HTMLImage = "pic2";
	var_Items.Add("",1,null);
	var_Items.Add("Item <img>pic1</img>",null,null);
	var_Items.Add("Item <img>pic2</img>",null,null);
	var_Items.Add("",1,null);
	var_Items.Add("<img>pic1</img> Item <img>pic2</img>",null,null);
exribbon1.Refresh();

27
How can I can I assign pictures or images for the item (method 1)

exribbon1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
exribbon1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
exribbon1.ToString = "Item[himg=pic1],Item[himg=pic2],[sep],Item <img>pic1</img>,Item <img>pic2</img>,[sep],<img>pic1</img> Item <img>pic2</img>";

26
How can I can I assign icons for the item (method 2)

exribbon1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item",null,null).Image = 1;
	var_Items.Add("Item",null,null).Image = 2;
	var_Items.Add("",1,null);
	var_Items.Add("Item <img>1</img>",null,null);
	var_Items.Add("Item <img>2</img>",null,null);
	var_Items.Add("",1,null);
	var_Items.Add("Item <img>1</img>",null,null).Image = 1;
exribbon1.Refresh();

25
How can I can I assign icons for the item (method 1)

exribbon1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exribbon1.Items.ToString = "Item[img=1],Item[img=2],[sep],Item <img>1</img>,Item <img>2</img>,[sep],Item <img>1</img>[img=1]";
exribbon1.Refresh();

24
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 2)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Padding = "2,2,2,2";
	var_Items.BackColor32 = 0x1000000;
	var_Items.Add("Item 1",null,null);
	var_Items.Add("Item 2",null,null);
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

23
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 1)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exribbon1.Items.ToString = "[itemsbg=0x1000000][itemspad=2,2,2,2][group=0x103](Item 1,Item 2,Item 3)";
exribbon1.Refresh();

22
How can I change the background color for a collection of items/group (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Padding = "2,2,2,2";
	var_Items.BackColor = Color.FromArgb(255,0,0);
	var_Items.Add("Item 1",null,null);
	var_Items.Add("Item 2",null,null);
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

21
How can I change the background color for a collection of items/group (method 1)

exribbon1.Items.ToString = "[itemsbg=RGB(255,0,0)][itemspad=2,2,2,2][group=0x103](Item 1,Item 2,Item 3)";
exribbon1.Refresh();

20
How can I change the visual appearance / background color (EBN) for a specified item (method 2)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item 1",null,null);
	var_Items.Add("Item 2",null,null).BackColor32 = 0x1000000;
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

19
How can I change the visual appearance / background color (EBN) for a specified item (method 1)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exribbon1.Items.ToString = "Item 1,Item 2[bg=0x1000000],Item 3";
exribbon1.Refresh();

18
How can I change the background color for a specified item (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item 1",null,null);
	var_Items.Add("Item 2",null,null).BackColor = Color.FromArgb(255,0,0);
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

17
How can I change the background color for a specified item (method 1)

exribbon1.Items.ToString = "Item 1,Item 2[bg=RGB(255,0,0)],Item 3";
exribbon1.Refresh();

16
How can I change the visual appearance (EBN) of the floating popups (method 2, applies to single popup)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items.Add("Popup",2,null).Items;
		var_Items1.PopupAppearance = (exontrol.EXRIBBONLib.AppearanceEnum)0x1000000;
		var_Items1.Add("Item 1",null,null);
		var_Items1.Add("Item 2",null,null);
		var_Items1.Add("Item 3",null,null);
exribbon1.Refresh();

15
How can I change the visual appearance (EBN) of the floating popups (method 1, applies to all)

exribbon1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exribbon1.Items.ToString = "Popup(Item 1,Item 2,Item 3)";
exribbon1.PopupAppearance = (exontrol.EXRIBBONLib.AppearanceEnum)0x1000000;
exribbon1.Refresh();

14
How can I change the visual appearance of the floating popups (method 2, applies to single popup)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items.Add("Popup",2,null).Items;
		var_Items1.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder;
		var_Items1.Add("Item 1",null,null);
		var_Items1.Add("Item 2",null,null);
		var_Items1.Add("Item 3",null,null);
exribbon1.Refresh();

13
How can I change the visual appearance of the floating popups (method 1, applies to all)

exribbon1.Items.ToString = "Popup(Item 1,Item 2,Item 3)";
exribbon1.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder;
exribbon1.Refresh();

12
How do I add a popup or a sub-menu so it show when cursor hovers it (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Items var_Items1 = var_Items.Add("Popup",2,null).Items;
		var_Items1.Add("Item 1",null,null);
		var_Items1.Add("Item 2",null,null);
		var_Items1.Add("Item 3",null,null);
exribbon1.Refresh();

11
How do I add a popup or a sub-menu so it show when cursor hovers it (method 1)

exribbon1.Items.ToString = "Popup(Item 1,Item 2,Item 3)";
exribbon1.Refresh();

10
How can I arrange the items by grouping (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			exontrol.EXRIBBONLib.Item var_Item1 = var_Items1.Add("Horizontal",2,null);
				var_Item1.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
				exontrol.EXRIBBONLib.Items var_Items2 = var_Item1.Items;
					var_Items2.Add("Sub-Item <b>A</b>",null,null);
					var_Items2.Add("Sub-Item <b>B</b>",null,null);
					var_Items2.Add("Sub-Item <b>C</b>",null,null);
			var_Items1.Add("",null,null).CaptionWidth = 16;
			exontrol.EXRIBBONLib.Item var_Item2 = var_Items1.Add("Vertical",2,null);
				var_Item2.Alignment = exontrol.EXRIBBONLib.AlignmentEnum.exCenter;
				var_Item2.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopupVertical | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
				exontrol.EXRIBBONLib.Items var_Items3 = var_Item2.Items;
					var_Items3.Add("Sub-Item <b>A</b>",null,null);
					var_Items3.Add("Sub-Item <b>B</b>",null,null);
					var_Items3.Add("Sub-Item <b>C</b>",null,null);
			var_Items1.Add("",null,null).CaptionWidth = 16;
			exontrol.EXRIBBONLib.Item var_Item3 = var_Items1.Add("Popup",2,null);
				exontrol.EXRIBBONLib.Items var_Items4 = var_Item3.Items;
					var_Items4.Add("Sub-Item <b>A</b>",null,null);
					var_Items4.Add("Sub-Item <b>B</b>",null,null);
					var_Items4.Add("Sub-Item <b>C</b>",null,null);
exribbon1.Refresh();

9
How can I arrange the items by grouping (method 1)

exribbon1.Items.ToString = "[group=0x03](Horizontal[group=0x01](Sub-Item <b>A</b>,Sub-Item <b>B</b>,Sub-Item <b>C</b>),[captionwidth=16],Vertical[group=0x0" +
"101][align=1](Sub-Item <b>A</b>,Sub-Item <b>B</b>,Sub-Item <b>C</b>),[captionwidth=16],Popup(Sub-Item <b>A</b>,Sub-Item <b>B</b>" +
",Sub-Item <b>C</b>),[captionwidth=160])";
exribbon1.Refresh();

8
How can I arrange some items vertically, and some horizontally (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("1",null,null);
			var_Items1.Add("2",null,null);
			var_Items1.Add("3",null,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
	exontrol.EXRIBBONLib.Item var_Item1 = var_Items.Add("",2,null);
		exontrol.EXRIBBONLib.Items var_Items2 = var_Item1.Items;
			var_Items2.Add("4",null,null);
			var_Items2.Add("5",null,null);
			var_Items2.Add("6",null,null);
		var_Item1.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
	exontrol.EXRIBBONLib.Item var_Item2 = var_Items.Add("",2,null);
		exontrol.EXRIBBONLib.Items var_Items3 = var_Item2.Items;
			var_Items3.Add("7",null,null);
			var_Items3.Add("8",null,null);
			var_Items3.Add("9",null,null);
		var_Item2.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
exribbon1.Refresh();

7
How can I arrange some items vertically, and some horizontally (method 1)

exribbon1.Items.ToString = "[group=3](1,2,3),[group=3](4,5,6),[group=3](7,8,9)";
exribbon1.Refresh();

6
How can I assign multiple-lines to an item (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("Item 1",null,null).Caption = "Item <br><c><b>1";
			var_Items1.Add("Item 2",null,null).Caption = "Item <br><c><b>2";
			var_Items1.Add("Item 3",null,null).Caption = "Item <br><c><b>3";
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
exribbon1.Refresh();

5
How can I assign multiple-lines to an item (method 1)

exribbon1.Items.ToString = "[group=3](Item <br><c><b>1,Item <br><c><b>2,Item <br><c><b>3)";
exribbon1.Refresh();

4
How can I add new items arranged horizontally to the ribbon control (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("",2,null);
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
		var_Item.GroupPopup = exontrol.EXRIBBONLib.GroupPopupEnum.exNoGroupPopupFrame | exontrol.EXRIBBONLib.GroupPopupEnum.exGroupPopup;
exribbon1.Refresh();

3
How can I add new items arranged horizontally to the ribbon control (method 1)

exribbon1.Items.ToString = "[group=3](Item 1,Item 2,Item 3)";
exribbon1.Refresh();

2
How can I add new items to the ribbon control (method 2)

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item 1",null,null);
	var_Items.Add("Item 2",null,null);
	var_Items.Add("Item 3",null,null);
exribbon1.Refresh();

1
How can I add new items to the ribbon control (method 1)

exribbon1.Items.ToString = "Item 1,Item 2,Item 3";
exribbon1.Refresh();